home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / Starter / Source / DocumentWindow.m < prev    next >
Text File  |  1995-06-12  |  374b  |  20 lines

  1.  
  2. #import <appkit/appkit.h>
  3. #import "DocumentWindow.h"
  4.  
  5. @implementation DocumentWindow
  6.  
  7. - miniaturize:sender
  8. {    /*  it is necessary to override this method because
  9.         the window by default does not send 'updateWindows'
  10.         message
  11.      */
  12.  
  13.     [super miniaturize:sender];
  14.     [NXApp perform:@selector(updateWindows) with:nil
  15.        afterDelay:1 cancelPrevious:YES];
  16.     return self;
  17. }
  18.  
  19. @end
  20.